-
Notifications
You must be signed in to change notification settings - Fork 0
fuzz tests debug fix #352
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fuzz tests debug fix #352
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changes introduce a new fuzzing mode that uses blocks from existing test traces. However, the implementation chains these blocks sequentially, applying them to the pre-state of only the very first trace, which might not be the intended behavior for replaying traces. Other changes include better error handling in the fuzzer and necessary visibility adjustments for cross-module usage.
Fuzzing/Sources/Fuzzing/FuzzGenerator/FuzzGeneratorTraces.swift
Outdated
Show resolved
Hide resolved
| public var stateRoot: Data32 { | ||
| get async { | ||
| await backend.rootHash | ||
| // TODO: should use backend.rootHash after StateTrie is fixed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## master #352 +/- ##
==========================================
- Coverage 82.00% 81.80% -0.21%
==========================================
Files 377 378 +1
Lines 33067 33237 +170
==========================================
+ Hits 27118 27190 +72
- Misses 5949 6047 +98 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
No description provided.